All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class java.naming.NotContextException

java.lang.Object
   |
   +----java.lang.Throwable
           |
           +----java.lang.Exception
                   |
                   +----java.naming.NamingException
                           |
                           +----java.naming.NotContextException

public class NotContextException
extends NamingException
This exception is raised when a naming operation proceeded to a point where a context is required to continue the operation but cannot get one.


Constructor Index

 o NotContextException()
Constructs a new instance of NotContextException.
 o NotContextException(Name, Object, Name)
Constructs a new instance of NotContextException using the arguments supplied.
 o NotContextException(Name, Object, Name, String)
Constructs a new instance of NotContextException.
 o NotContextException(String)
Constructs a new instance of NotContextException using the arguments supplied.

Constructors

 o NotContextException
 public NotContextException(Name resolvedName,
                            Object resolvedObj,
                            Name remainingName,
                            String explanation)
Constructs a new instance of NotContextException.

Parameters:
resolvedName - The part of the name that has been successfully resolved.
resolvedObj - The object to which resolution was successful.
remainingName - The remaining unresolved portion of the name.
explanation - Additional detail about this exception.
 o NotContextException
 public NotContextException(Name resolvedName,
                            Object resolvedObj,
                            Name remainingName)
Constructs a new instance of NotContextException using the arguments supplied.

Parameters:
resolvedName - The part of the name that has been successfully resolved.
resolvedObj - The object to which resolution was successful.
remainingName - The remaining unresolved portion of the name.
 o NotContextException
 public NotContextException(String explanation)
Constructs a new instance of NotContextException using the arguments supplied.

Parameters:
explanation - Additional detail about this exception.
 o NotContextException
 public NotContextException()
Constructs a new instance of NotContextException.


All Packages  Class Hierarchy  This Package  Previous  Next  Index